home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / compiler / __init__.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  1KB  |  29 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Package for parsing and compiling Python source code
  5.  
  6. There are several functions defined at the top level that are imported
  7. from modules contained in the package.
  8.  
  9. parse(buf, mode="exec") -> AST
  10.     Converts a string containing Python source code to an abstract
  11.     syntax tree (AST).  The AST is defined in compiler.ast.
  12.  
  13. parseFile(path) -> AST
  14.     The same as parse(open(path))
  15.  
  16. walk(ast, visitor, verbose=None)
  17.     Does a pre-order walk over the ast using the visitor instance.
  18.     See compiler.visitor for details.
  19.  
  20. compile(source, filename, mode, flags=None, dont_inherit=None)
  21.     Returns a code object.  A replacement for the builtin compile() function.
  22.  
  23. compileFile(filename)
  24.     Generates a .pyc file by compiling filename.
  25. '''
  26. from transformer import parse, parseFile
  27. from visitor import walk
  28. from pycodegen import compile, compileFile
  29.